home *** CD-ROM | disk | FTP | other *** search
/ Apple Developer Connection 1998 Fall: Game Toolkit / Disc.iso / SDKs / Apple Game Sprockets / DrawSprocket / GoggleSprocket / GoggleSprocketTest Sources / GSpTest_Main.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-12  |  883 b   |  37 lines  |  [TEXT/CWIE]

  1. /*
  2. ********************************************************************************
  3. **
  4. ** File: main.h
  5. **
  6. ** Description:
  7. **
  8. **    Header file for general application stuff.
  9. **
  10. ********************************************************************************
  11. */
  12. #ifndef __main_h__
  13. #define __main_h__
  14.  
  15. /*
  16. ********************************************************************************
  17. ** error codes
  18. ********************************************************************************
  19. */
  20. enum
  21. {
  22.     kError_Unknown                = 128,
  23.     kError_NotEnoughMemory,
  24.     kError_AppleEvents,
  25.     kError_ResNotFound,
  26.     kError_NoQD3D,    
  27.     kError_QD3DStartupFailed
  28. };
  29.  
  30. /*
  31. ********************************************************************************
  32. ** prototypes
  33. ********************************************************************************
  34. */
  35. void HandleError( short inTextID, Boolean inFatal );
  36.  
  37. #endif // __main_h__